home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / flute.zip / SAMP_ACT.C / SAMP_ACT.DEF < prev    next >
Text File  |  1995-04-07  |  629b  |  34 lines

  1. ; module-definition file for generic -- used by LINK.EXE
  2.  
  3. NAME         Samp_Act       ; application's module name
  4.  
  5. DESCRIPTION  'Sample C Program to demonstrate adding Window Acts'
  6.  
  7. EXETYPE      WINDOWS       ; required for all Windows applications
  8.  
  9. STUB         'WINSTUB.EXE' ; Generates error message if application
  10.                ; is run without Windows
  11.  
  12. CODE  PRELOAD MOVEABLE DISCARDABLE
  13.  
  14. DATA  PRELOAD MOVEABLE
  15.  
  16.  
  17. HEAPSIZE     8000
  18. ;
  19.  
  20.  
  21. IMPORTS
  22.  
  23. ; All functions that will be called by any Windows routine
  24. ; MUST be exported.
  25.  
  26. EXPORTS
  27.     SampActWindProc @1        ; export of our sample window class
  28.     
  29.     
  30.     
  31.  
  32.  
  33.  
  34.